GetHeapUsageResponse

data class GetHeapUsageResponse(usedSize: Double, totalSize: Double)

Represents response frame that is returned from Runtime#getHeapUsage operation call. Returns the JavaScript heap usage. It is the total usage of the corresponding isolate not scoped to a particular Runtime.

See also

Constructors

GetHeapUsageResponse
Link copied to clipboard
fun GetHeapUsageResponse(usedSize: Double, totalSize: Double)

Properties

totalSize
Link copied to clipboard
val totalSize: Double
Allocated heap size in bytes.
usedSize
Link copied to clipboard
val usedSize: Double
Used heap size in bytes.

Sources

jvm source
Link copied to clipboard